home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / Delphi Digests / Delphi Vol. 2 / Delphi 2.58 < prev    next >
Encoding:
Text File  |  1986-11-29  |  31.3 KB  |  868 lines  |  [TEXT/ttxt]

  1.  Delphi Mac Digest          Tuesday, 11 November 1986      Volume 2 : Issue 58
  2.  
  3.  Today's Topics:
  4.       Playing with sector-interleave factors (5 messages)
  5.       RE: How to reboot your Mac and Hard Disk (Re: Msg 14516) (2 messages)
  6.       RE: Finder/many-file copy bug? (Re: Msg 14512) (2 messages)
  7.       RE: IMAGEWRITER-II HELP (Re: Msg 14464)
  8.       proper definition of time variables
  9.       RE: MPW C (Green Hills) "feature" (Re: Msg 975) (3 messages)
  10.       Inside Mac Volume IV
  11.       RE: Usenet Mac Digest V2 #90 (Re: Msg 14551)
  12.       seminar announcement
  13.       modem recommendation (3 messages)
  14.       RE: DataFrames... (Re: Msg 14545) (5 messages)
  15.        Re: Command Keys for Openning Desk Accs
  16.       DiskTimer Results of Univation Disk
  17.       Re: Fedit and Bundle bits (Re: custom ic
  18.       RE: Usenet Mac Digest V2 #90 (Re: Msg 14551)
  19.       RE: INFO-MAC Digest V5 #3 (Re: Msg 14299)
  20.       LaserWriter (5 messages)
  21.       Excel Macro
  22.       Intersting MacTerminal 2.0 feature
  23.       1 Mbit RAM chips are here for the Mac Plus
  24.       scc clock (2 messages)
  25.       SCSI controllers
  26.       HD20SC Icon (3 messages)
  27.        the cache
  28.  -----------------------------------------------------------------------
  29.  
  30.  From: LOGICHACK (14534)
  31.  Subject: Playing with sector-interleave factors
  32.  Date: 6-NOV-01:20: Hardware & Peripherals
  33.  
  34.  Steve:
  35.  
  36.      I'm interested in playing with the sector-interleave factor in my
  37.  DataFrame-20.  Since you are the resident SCSI expert, I hope you can give me
  38.  some clues.
  39.  
  40.      Basically, I want to use as tight an interleave-factor as I can. Of
  41. -course
  42.  my DataFrame initializer program already does this but since I have a
  43. -12.5mhz 3
  44.  to 1 board, does it not make sense that I might be able to do better?
  45.  
  46.      If you could give me some clues as to what the code would look
  47.  like to set the interleave, I figure I can snoop around in the program
  48.  and try different values manually...  Does this make sense or is there
  49.  something inherent in the SCSI ROM code that puts a cap on transfer
  50.  speed?  I understand that SuperMac's XP upgrade patches the Apple ROMs
  51.  and requires the drive to be reformatted.  Any ideas as to what they
  52.  are doing?
  53.  
  54.  Thanx,
  55.  
  56.  Paul :)
  57.  
  58.  ------------------------------
  59.  
  60.  From: NAKMAN (14541)
  61.  Subject: RE: Playing with sector-interleave facto (Re: Msg 14534)
  62.  Date: 6-NOV-03:05: Hardware & Peripherals
  63.  
  64.  Paul -
  65.  
  66.  I'm beta testing an XP upgrade right now, so I can tell you a little about
  67. -it.
  68.  It consists of a piggyback board that plugs into the Mac's ROM soeckets and
  69. -the
  70.  ROMs plug into it.  It allegedly replaces some of the Mac's buggy SCSI code
  71. -in
  72.  ROM (which is fixed by RAM patches in System 3.2, but as a result does not
  73. -run
  74.  as fast as it would in RAM).
  75.  
  76.  Without the XP upgrade, on a norma Mac+, you can run Initializer 1.5
  77.  and get a 2:1 interleave.  With an XP, however, you can get a 1:1
  78.  interleave. This affects primarily the speeds of BLOCK data transfers,
  79.  so it will make programs like MS-Word and other Microsoft stuff speed
  80.  up a lot, but it will have little effect on MacWrite.
  81.  
  82.  -- Raines
  83.  
  84.  ------------------------------
  85.  
  86.  From: BRECHER (14547)
  87.  Subject: RE: Playing with sector-interleave facto (Re: Msg 14534)
  88.  Date: 6-NOV-03:25: Hardware & Peripherals
  89.  
  90.  Within the past few days, SuperMac has figured out how to get 1:1 interleave
  91.  without adding ROM code to the Mac.  Hence, their XP upgrade will consist
  92. -only
  93.  of new initializer/driver software and a controller ROM change (in the drive
  94.  box).  I don't know what they're changing in the controller.
  95.  
  96.  The interleave factor is determined by the contents of the format command
  97. -given
  98.  to the controller by host software when the drive is formatted.  The
  99. -interleave
  100.  factor also appears in the software command that assigns an alternate track
  101. -to
  102.  replace a bad track (since this command is a kind of format command affecting
  103.  only the alternate track).
  104.  
  105.  For any given CPU speed, there is a cap on data transfer due to the
  106.  fact that each byte must be moved by a CPU instruction.  However, even
  107.  with 8MHz CPUs, 1:1 with MFM (5MHz) drives is possible, as both
  108.  SuperMac and MICAH have demonstrated.
  109.  
  110.  It's pretty tough to predict what the code would look like to set up
  111.  the format.  In case the format command is in a table, it would look
  112.  like this:
  113.  
  114.  04 00 00 00 0X 00
  115.  
  116.  where X is the interleave factor, and the last byte might possibly be $40
  117.  instead of 00.  Not a terribly distinctive pattern, I'm afraid. Using a
  118.  debugger, you could try trapping _SCSIDispatch before formatting.  If the
  119. -word
  120.  on top of the stack is 0003, then a command is being issued; if the word
  121. -below
  122.  that is 0006 (length of command) and the long below that is an address that
  123.  points to the 04... pattern above, then that's the format command.  (In
  124. -memory
  125.  terms, read "above" for "below.")
  126.  
  127.  If you patch the format command but can't find the patch for the assign
  128.  alternate track command, don't sweat it -- a bigger interleave on the
  129. -alternate
  130.  tracks, if there are any, isn't going to be noticeable.
  131.  
  132.  ------------------------------
  133.  
  134.  From: WESTEN (14566)
  135.  Subject: RE: Playing with sector-interleave facto (Re: Msg 14541)
  136.  Date: 6-NOV-22:35: Hardware & Peripherals
  137.  
  138.  The latest version of the XP upgrade (now finished and shipping today I
  139. -think)
  140.  does not require the ROMddaughter board, nor any modification to the Mac at
  141.  all...or so Dan Clarke (head Tech after Edelman himself at SuperMac) told me
  142.  yesterday. -Chuck
  143.  
  144.  ------------------------------
  145.  
  146.  From: NAKMAN (14634)
  147.  Subject: RE: Playing with sector-interleave facto (Re: Msg 14566)
  148.  Date: 8-NOV-19:18: Hardware & Peripherals
  149.  
  150.  Dan Clark of SuperMac just posted a message in MACUS confirming that: The XP
  151.  upgrade (and XP drives) are now shipping.  No modification of the Mac is
  152.  required, just a board change in the drive itself.  After doing this, you can
  153.  reformat the drive to get 1:1 interleave (which greatly increases the speed
  154. -of
  155.  CERTAIN programs, but not all) and you can change the SCSI ID from Software
  156.  (definitely needed, as one who has changed the ID's on 5 DataFrames, several
  157.  times, by hand, and punctured a finger and shocked myself as a result).
  158.  Initializer 2.1 was just posted on CIS and should be up here (I'll UL it
  159. -myself
  160.  if SuperMac doesn't!)
  161.  
  162.  -- Raines
  163.  
  164.  ------------------------------
  165.  
  166.  From: LOGICHACK (14535)
  167.  Subject: RE: How to reboot your Mac and Hard Disk (Re: Msg 14516)
  168.  Date: 6-NOV-01:22: SIG Business
  169.  
  170.  I'm pretty sure that's because you can operate the mini-debugger from an
  171.  external terminal.  Kinda handy since it doesn't mess up your screen.
  172.  
  173.  Try it.
  174.  
  175.  Paul :)
  176.  
  177.  ------------------------------
  178.  
  179.  From: BRECHER (14544)
  180.  Subject: RE: How to reboot your Mac and Hard Disk (Re: Msg 14516)
  181.  Date: 6-NOV-03:23: SIG Business
  182.  
  183.  In addition to the on-screen minidebugger, the ROM contains a nub for
  184.  two-Mac debugging.  When the interrupt button is pressed, the ROM says
  185.  to itself (in perfect English): "Is there something connected
  186.  (asserting CTS) to the modem port?  Yes! But is the serial port in use
  187.  (driver open)?  No!  OK, there must be a Mac running MacDB attached!
  188.  So, I'll ship a bunch of info out the modem port."  If a modem is
  189.  connected and not online (port not in use), the ROM will wait forever
  190.  for a valid MacDB response.  If nothing is connected, or the port is
  191.  in use (serial driver open) it puts up the on-screen debugger.
  192.  
  193.  ------------------------------
  194.  
  195.  From: PEABO (14537)
  196.  Subject: RE: Finder/many-file copy bug? (Re: Msg 14512)
  197.  Date: 6-NOV-02:25: Bugs & Features
  198.  
  199.  But if the disk switch dialog were lost, shouldn't that trigger some kind of
  200.  system bomb?  Usually when there is a problem with disk switch alerts, you
  201. -get
  202.  an endless loop trying to paint the alert box, which can be fixed only by
  203.  rebooting.
  204.  
  205.  Also, I'd be happier to see a more robust DeskTop file.  I haven't had any
  206.  trouble with mine, but I keep hearing reports of very odd things affecting
  207.  folder X or folder Y.  The Finder ought not to believe everything it reads
  208. -from
  209.  disk.  (Ditto for the Resource Manager, which can get terribly messed up by
  210.  corrupted resource files.)
  211.  
  212.  peter
  213.  
  214.  ------------------------------
  215.  
  216.  From: MACINTOUCH (14553)
  217.  Subject: RE: Finder/many-file copy bug? (Re: Msg 14537)
  218.  Date: 6-NOV-10:49: Bugs & Features
  219.  
  220.  Well, it appears that it was indeed corruption of the catalog or desktop.  I
  221.  eventually initialized the target disk, created a new system folder on it,
  222. -and
  223.  dragged the individual files from the old system folder into the new one.
  224. -This
  225.  gave me a "good" system folder, which could be copied along with 1006 files
  226. -to
  227.  another hard disk without any problem.  I went both ways between the
  228. -MacBottom
  229.  and the FX/20 (and a Hyper2000) to make sure it wasn't a bug in a hard disk
  230.  driver.
  231.  
  232.  I wonder if this is related to the problem that crops up occasionally,
  233.  where Chooser can't find printer drivers that are in the System folder
  234.  and have worked fine before.  A blessed folder problem?  (A number of
  235.  people have had other folder problems though, so maybe it's not just
  236.  the blessed folder). By the way, I always have only one System folder,
  237.  so it can't be a problem of multiple blessed folders.
  238.  
  239.  Ric
  240.  
  241.  ------------------------------
  242.  
  243.  From: REGENCY (14548)
  244.  Subject: RE: IMAGEWRITER-II HELP (Re: Msg 14464)
  245.  Date: 6-NOV-03:43: Telecommunicating
  246.  
  247.  Thanks for the info.  The problem was that I had MAX PRINT spooler on.
  248.  When I shut the spooler off everything worked fine.  It took two days
  249.  for me to realize the problem, because I was using McWrite and the
  250.  printspooler just before logging on to delphi.  thanks again for the
  251.  feedback.
  252.  
  253.  ------------------------------
  254.  
  255.  From: RMUHA (981)
  256.  Subject: proper definition of time variables
  257.  Date:  6-NOV-01:26: Inside Mac
  258.  
  259.  In the course of a recent project involving lots a dealing with the
  260.  system time I discovered that the Lightspeed include files define the
  261.  global variable time (as well as the alarm clock value, file create
  262.  and mod times, etc) as long ints.  Note that since the MAC measures it
  263.  time from Jan 1, 1904 the MSB of the time values has been set for
  264.  quite a while.  So for calculations and comparisons to work properly,
  265.  these definitions should really be unsigned long.
  266.  
  267.  ------------------------------
  268.  
  269.  From: RMUHA (982)
  270.  Subject: RE: MPW C (Green Hills) "feature" (Re: Msg 975)
  271.  Date:  6-NOV-01:35: Programming Techniques
  272.  
  273.  Many centuries ago, when I was programming on a beached whale of a
  274.  timesharing system known as TSS (IBM's first and worst), I was
  275.  involved in porting lots of C programs to that system.  There, the
  276.  system also expected strings to be preceded by a length byte; however
  277.  the address you passed was of the first actual byte of the string.  So
  278.  we actually rigged to compiler to generate the secret length byte and
  279.  voila, strings that were mostly usable.  Now, in my old age, I find
  280.  conduct like that embarassing.  It might still work on the MAC.  You
  281.  would just have to say &"xyz"[-1] or, more simply, "xyz"-1.
  282.  
  283.  I shouldn't be saying this.  Somebody might actually go ahead and do it.
  284.  
  285.  ------------------------------
  286.  
  287.  From: PEABO (983)
  288.  Subject: RE: MPW C (Green Hills) "feature" (Re: Msg 979)
  289.  Date:  6-NOV-02:15: Programming Techniques
  290.  
  291.  We'd *rather* do the PtoC and CtoP ... it's the thought of turning on all
  292. -those
  293.  optimization features and then having the run-time library munch through our
  294.  strings all the time that is upsetting!
  295.  
  296.  peter
  297.  
  298.  ------------------------------
  299.  
  300.  From: DSCHLESINGER (999)
  301.  Subject: RE: MPW C (Green Hills) "feature" (Re: Msg 946)
  302.  Date:  10-NOV 23:31 Programming Techniques
  303.  
  304.  BTW, Mac C also makes no distinction between '\r' and '\n' -- they're
  305.  all carriage returns.  While this makes some (slight) sense in terms
  306.  of usage on the Mac, it's un-C-like behavior.  C should be WYSIWYG
  307.  programming.
  308.  
  309.  The '\p' construct is, as far as I'm concerned a _MUST_...  I'm used to
  310. -CtoPStr
  311.  and PtoCStr...
  312.  
  313.  If you don't like the register-based argument passing in Mac C, you can
  314. -always
  315.  recompile everything and force stack-based argument pasing.
  316.  
  317.  Vers. 5.0 of Mac C has a "pascal" declaration for functions as well as
  318.  a library of [Not in ROM] routines.  Speed has also been enhanced...
  319.  
  320.  Mac C for me!!
  321.  
  322.  ------------------------------
  323.  
  324.  From: STEVEMALLER (984)
  325.  Subject: Inside Mac Volume IV
  326.  Date:  6-NOV-02:16: SIG Business
  327.  
  328.  Can anyone define what the Can anyone define what the "Time Manager"
  329.  is, and WHY it exists? I pride myself on an intimate knowledge of the
  330.  guts of the Mac, and I can find no reference to it.  Is is covered in
  331.  Inside Mac Volume IV?
  332.    Steve
  333.  
  334.  985  6-NOV-03:32: SIG Business
  335.       RE: Inside Mac Volume IV (Re: Msg 984)
  336.       From: BRECHER      To: STEVEMALLER (NR)
  337.  
  338.  It's a high-resolution timer facility covered in IM vIV.
  339.  
  340.  ------------------------------
  341.  
  342.  From: MACINTOUCH (14555)
  343.  Subject: RE: Usenet Mac Digest V2 #90 (Re: Msg 14551)
  344.  Date: 6-NOV-11:07: Network Digests
  345.  
  346.  To: naftoli@aecom.UUCP (Robert N. Berlinger)
  347.  Subject: Freesoft roundtable on GEnie
  348.  
  349.  I had the same problem on GEnie, but found Brian Ebarb, CMUG, to be very
  350.  helpful.  Just send him mail asking to be in the Roundtable.  He's sort
  351.  of the sysop.  (CMUG => Coffee MUG).
  352.  
  353.  to: tim@ism780c.UUCP (Tim Smith)
  354.  Subject: Re: Dataframe Utilities can be Killers
  355.  
  356.  I talked to PCPC, and they claim they'll release a Format utility in the next
  357.  week or two.
  358.  
  359.  Ric Ford
  360.  "MacInTouch"
  361.  
  362.  ------------------------------
  363.  
  364.  From: BCSMAC (14558)
  365.  Subject: seminar announcement
  366.  Date: 6-NOV-12:02: Business Mac
  367.  
  368.  AIGA Boston               Information Design Seminar      Saturday, November
  369. -15
  370.  
  371.  Boston Design Center, 660 Summer St., Boston          9A to 5P, Registration
  372. -8A
  373.  
  374.    Seminar Fee: AIGA Boston members $50, Non-Members: $75, Students w/ID: $25
  375.  
  376.                                  Guest Speakers:
  377.  
  378.  Alan Kay, is a musician and computer scientist and currently one of three
  379.     research fellows charting Apple's future.
  380.  
  381.  Edward Tufte, Professor of Political Science and Statistics at Yale
  382. -University,
  383.     author of "The Visual Display of Quantitative Infomation."
  384.  
  385.  Kenneth Morris, faculty member at John Jay College of Criminal Justice,
  386.     executive vice president in charge of Language Services Division of the
  387.     design firm of Siegal and Gale in New York
  388.  
  389.  Joel Katz, a partner of Katz Wheeler Design in Philadelphia. Katz has
  390.  a particular interest in maps, diagrams, and the visualization of
  391.  complex data.
  392.  
  393.  Sharon Helmer Poggenpohl is a design consultant and teacher based in
  394.     Philadelphia. Her interests include design process and alternative
  395.     approaches to organizing information.
  396.  
  397.                   For information please call: 492-2777 x2505
  398.  
  399.  ------------------------------
  400.  
  401.  From: RMUHA (14563)
  402.  Subject: modem recommendation
  403.  Date: 6-NOV-18:52: Hardware & Peripherals
  404.  
  405.  For the last six months or so I've been using an ADC moden that I
  406.  purchased from DAK (the high-tech liquidation people) for $169.  It's
  407.  Hayes compatible and seems to be quite reliable (although, since I
  408.  live in Cambridge, I've never had noisy line problems since Delphi is
  409.  but a local call).  In their latest catalog, they've dropped the price
  410.  to $149.  So if you need a modem... I've also found DAK to be very
  411.  good w/respect to returns...just send it back and they send your money
  412.  back (no questions asked).
  413.  
  414.  Incidentally, on the subject of return policies, I'd like to warn
  415.  people to stay away from Warp Nine.  I purchased a Warp 20MB internal
  416.  drive early in the year but sent it back (within two days) after
  417.  reading the installation instructions: they require you to pry your
  418.  logic board back into place! It took a month of phone calls before
  419.  they would credit my VISA account...
  420.  
  421.  ------------------------------
  422.  
  423.  From: DWB (14596)
  424.  Subject: RE: modem recommendation (Re: Msg 14563)
  425.  Date: 7-NOV-06:12: Hardware & Peripherals
  426.  
  427.  Regarding prying your logic board back into place.  I've found that
  428.  the best way to get the logic board into and out of it's frame is just
  429.  that, take a screwdriver and carefully pry it out, rather than trying
  430.  to slide it out.  This is especially helpful if you have a daughter
  431.  board (sh as my MonsterMac) that increases the hight of the board and
  432.  makes it otherwise difficult to remove.
  433.  
  434.  David
  435.  
  436.  ------------------------------
  437.  
  438.  From: MACINTOUCH (14627)
  439.  Subject: RE: modem recommendation (Re: Msg 14596)
  440.  Date: 8-NOV-13:23: Hardware & Peripherals
  441.  
  442.  This does seem to be common practice, used for HyperDrive and many
  443.  other internal Mac modifications.  I've seen it called "jumping the
  444.  board" into place.
  445.  
  446.  Ric
  447.  
  448.  ------------------------------
  449.  
  450.  From: WESTEN (14567)
  451.  Subject: RE: DataFrames... (Re: Msg 14545)
  452.  Date: 6-NOV-22:39: Hardware & Peripherals
  453.  
  454.  Steve, SuperMac is (at least sometimes) removing the antistatic tabs... How
  455.  dangerous do you think this is? Chuck
  456.  
  457.  ------------------------------
  458.  
  459.  From: PEABO (14570)
  460.  Subject: RE: DataFrames... (Re: Msg 14554)
  461.  Date: 7-NOV-00:40: Hardware & Peripherals
  462.  
  463.  My HD-20 used to make a high pitched noise from time to time, usually
  464.  lasting from 20-60 seconds after which it would become quiet again.
  465.  (The image that comes to mind is the singing of telephone wires on a
  466.  hot summer day -- that's what this sounded a bit like.)  The first
  467.  time it happened was about an hour after I unpacked it, and it scared
  468.  the #@@$ out of me (I ran the disk disgnostic again and reformatted,
  469.  etc).  Later on I got accustomed to hearing it a couple times a week,
  470.  and nowadays I think it hardly ever happens.
  471.  
  472.  I figured after a while that it must be the fan, but I never was sure.
  473.  
  474.  peter
  475.  
  476.  ------------------------------
  477.  
  478.  From: DDUNHAM (14589)
  479.  Subject: RE: DataFrames... (Re: Msg 14554)
  480.  Date: 7-NOV-03:54: Hardware & Peripherals
  481.  
  482.  We had some really horrible noises develop on our Corvus Omnidrive,
  483.  and I managed to cure them by opening up the case and vacuuming away
  484.  the several mm thick layer of dust.  It took about a day after that
  485.  for the noise to completely go away.
  486.  
  487.  ------------------------------
  488.  
  489.  From: BRECHER (14592)
  490.  Subject: RE: DataFrames... (Re: Msg 14554)
  491.  Date: 7-NOV-04:37: Hardware & Peripherals
  492.  
  493.  Yes, that's the ground strap contacting the spindle the wrong way.
  494.  Not quite as bad as chalk screeching against a blackboard, but almost.
  495.  
  496.  ------------------------------
  497.  
  498.  From: BRECHER (14594)
  499.  Subject: RE: DataFrames... (Re: Msg 14567)
  500.  Date: 7-NOV-04:38: Hardware & Peripherals
  501.  
  502.  The only indication I've had that the ground straps are not purely
  503. -superfluous
  504.  was from Steve Edelman, who says he has a manufacturer's lengthy study of the
  505.  subject, the length implying that it was not a cut and dried conclusion.
  506.  
  507.  ------------------------------
  508.  
  509.  From: BRECHER (14590)
  510.  Subject:  Re: Command Keys for Openning Desk Accs
  511.  Date: 7-NOV-04:36: MUGS Online
  512.  
  513.  To: tim@ism780c.UUCP (Tim Smith)
  514.  Subject: Re: Command Keys for Openning Desk Accs.
  515.  
  516.  > Does anyone know why there is supposed to be a null [at the start of a DA's
  517.  > name]?  IM says it is to avoid conflicts with file names, but who cares if
  518. -a
  519.  > DA and a file have the same?
  520.  
  521.  The _Open trap cares; it needs to be able to distinguish file system
  522.  names from device driver/DA names.  _OpenDeskAcc is basically "just"
  523.  glue to the overloaded _Open.
  524.  
  525.  However, I think the null is a 64K ROM anachronism -- that the 128K ROMs
  526. -don't
  527.  care.  The 128K ROM _Open looks via the unit table, or for a resource of type
  528.  DRVR, if the name starts with a period, or if ioVersNum=0 and ioPermssn =
  529. -$40.
  530.  _OpenDeskAcc sets the 0,$40 values before calling _Open.  Note that
  531. -file/volume
  532.  names cannot begin with a period.
  533.  
  534.  ------------------------------
  535.  
  536.  From: BRECHER (14591)
  537.  Subject: DiskTimer Results of Univation Disk
  538.  Date: 7-NOV-04:37: MUGS Online
  539.  
  540.  To:     "Robert E. Yellen" (IMD-TSD) <ryellen@ARDEC.ARPA>
  541.  Subject:  DiskTimer Results of Univation Disk
  542.  
  543.  DiskTimerII reports results in deciseconds, with no decimal point.  I
  544.  assume you divided the results by 10 to render them comparable with
  545.  DiskTimer (the predecessor program) results.
  546.  
  547.  Note to all: please report the results in the units provided by the
  548.  program.  The units are different in DiskTimerII in order to avoid
  549.  confusion with DiskTimer results, since some people don't report which
  550.  program they ran.  Also, please do not report DiskTimer results;
  551.  report only DiskTimerII results.  DiskTimerII repairs a flaw in
  552.  DiskTimer; it is not merely another kind of test.  If the results from
  553.  the two programs correlate, then the DiskTimer results are
  554.  superfluous; if they don't then the DiskTimer results are invalid.
  555.  DiskTimer and its results should be discarded in favor of DiskTimerII.
  556.  Thanks for your time in running DiskTimerII and reporting its results.
  557.  
  558.  ------------------------------
  559.  
  560.  From: BRECHER (14626)
  561.  Subject: Re: Fedit and Bundle bits (Re: custom ic
  562.  Date: 8-NOV-11:09: MUGS Online
  563.  
  564.  To: Lance Nakata <K.Kirin@HAMLET.STANFORD.EDU>
  565.  Subject: Fedit and Bundle bits (Re: custom icons for applications)
  566.  
  567.  > With the new ROMs, Fedit 3.05 through Fedit Plus 1.0.7 have problems
  568.  > retaining changes done to the LAST modified file.
  569.  
  570.  The changes are made directly to the disk.  This is necessary because
  571.  the File Manager does not provide a facility for changing all of the
  572.  attributes (only some of them).  The problem is observed if you have
  573.  the cache on when you enter Fedit: the cache is not updated.  The new
  574.  attribute settings are correct on the disk but not in the cache.  When
  575.  you leave Fedit, Finder's GetFileInfo gets a cache hit on the obsolete
  576.  directory block.  The reason your workaround -- open another file from
  577.  within Fedit -- is effective is that it overwrites the cache with info
  578.  about/from the new file, and then Finder's GetFileInfo must go to
  579.  disk.  Another workaround is to disable the cache (via the Control
  580.  Panel) before launching Fedit.  John Mitchell tells me that Fedit Plus
  581.  2.0 will invalidate the cache so that it will be refreshed from disk
  582.  before subsequent programs get information from it.
  583.  
  584.  ------------------------------
  585.  
  586.  From: MACLAIRD (14645)
  587.  Subject: RE: Usenet Mac Digest V2 #90 (Re: Msg 14551)
  588.  Date: 9-NOV-11:51: Network Digests
  589.  
  590.  To: richa@tekred.UUCP (Rich Amber )
  591.  Subject: MacWorks (Apple, are you there?)
  592.  
  593.  Yes, you are right:  Apple has pulled the plug, at least through the dealer
  594.  network.  Dumb Dumb da Dump.
  595.  
  596.  But if you have a friend with MacWorks XL, use Copy II Mac sector copy.  You
  597.  might have to run it on a Macintosh, maybe on a 400K drive.  MacWorks 3.0 was
  598.  part of the "May 1985" Software Supplement, so APDA might carry it too.
  599.  
  600.  Apple cannot be blamed for letting their dealers cut off - the dealers don't
  601.  stand to make any more money from the product - but there still are a few
  602.  Lisa/Macintosh XL dealers.  Call the Apple Zip Code laddies (aka their toll
  603.  free Customer Service number) and they might give you a hand; or a boot.
  604.  
  605.  The latest Macazine has some other telephone numbers that might be helpful.
  606.  In particular, try NetSolutions at 800-523-6549.  They publish The LisaTalk
  607.  Report, and could certainly help you out (but they are a comercial
  608. -operation).
  609.  
  610.  Apple is now beginning to second-source the Lisa, which is probably good news
  611.  to current Lisa owners, because folks are working on enhancing it.  Speeding
  612.  the clock rate is one goal (although I can't for the life of me figure why
  613.  some EE wizard hasn't removed the memory overleave on the screen buffer - a
  614.  dual port can't be that difficult).  The basic hardware capabilities of the
  615.  Lisa make it far more of a computer than the Macintosh is.  On the other
  616. -hand,
  617.  Lisa was Macintosh by bureaucracy, and bureaucracies don't make money, they
  618.  just make more bureaucracies.
  619.  
  620.  By the way, the MacWorks emulator may run slower than the Mac does, but
  621. -things
  622.  like the scrolling on the 3.9 Workshop Editor show that Lisa is plenty
  623. -capable
  624.  of running as fast as the eye can see.  The problem was, they had software in
  625.  there that would put a mainframe to sleep.  Try doing a sector view on the
  626.  MacWorks disk.  Just reading the things in there amused me, anyway.
  627.  
  628.  Finally, I can't recall booting the Lisa from my MacWorks XL disk - but I've
  629.  used a copy quite a lot!  Good luck - and use Hard Disk Install to put
  630. -MacWorks
  631.  up in your Hard Disk next time.
  632.  
  633.  Laird (MACLAIRD).
  634.  
  635.  ------------------------------
  636.  
  637.  From: DSACHS (14653)
  638.  Subject: RE: INFO-MAC Digest V5 #3 (Re: Msg 14299)
  639.  Date: 9-NOV-16:47: Network Digests
  640.  
  641.  ODESTA HELIX is capable of selecting areas from a text line.  You may need
  642. -the
  643.  latest version of Double Helix.  You could also preprocess your file with a
  644.  simple program written in BASIC, C, or PASCAL.
  645.  
  646.  ------------------------------
  647.  
  648.  From: PDNNOG (14673)
  649.  Subject: LaserWriter
  650.  Date: 9-NOV-21:06: Hardware & Peripherals
  651.  
  652.  Peter, I've just gotten a new laserwriter. Beautiful! and appears to
  653.  have the Version 38.0 rev 2 roms which I have seen is actually for the
  654.  LaserPlus.. maybe apple is doing the macplus rom thing on the lasers.
  655.  Only one minor problem, when the printer prints a buncha things at a
  656.  fast clip, the paper gets a funny almost not noticable set of wrinkles
  657.  on the right hand side of the paper. This is with both regular xerox
  658.  20lb paper, and the new Laser paper from Inmac. Is this something that
  659.  will ease in time? It actually is only noticable in the right light.
  660.  
  661.  ------------------------------
  662.  
  663.  From: PEABO (14696)
  664.  Subject: RE: LaserWriter (Re: Msg 14673)
  665.  Date: 9-NOV-23:40: Hardware & Peripherals
  666.  
  667.  I haven't seen any wrinkling on my LW (but it is a non-Plus LW, if the
  668.  speed of page setting has anything to do with it).  I have noticed
  669.  some irregularity in print density, which tends to get better after
  670.  the cartridge has been running for a while (and with repeated sifting
  671.  of the toner acfording to the directions) .
  672.  
  673.  peter
  674.  
  675.  ------------------------------
  676.  
  677.  From: INC (14707)
  678.  Subject: RE: LaserWriter (Re: Msg 14673)
  679.  Date: 10-NOV 17:40 Hardware & Peripherals
  680.  
  681.  It's very possible that the toner cartridge is damaged or incorrectly loaded.
  682.  
  683.  Try taking it out and examining it.  We had to replace one last week that was
  684.  wrinkling and jamming.
  685.  
  686.  Josh / MacInTouch
  687.  
  688.  ------------------------------
  689.  
  690.  From: PDNNOG (14710)
  691.  Subject: RE: LaserWriter (Re: Msg 14696)
  692.  Date: 10-NOV 18:10 Hardware & Peripherals
  693.  
  694.  Thanks for your reply. It's always a pleasure to know I will get a
  695.  response, even tho in this case, it does not shed light on the
  696.  problem. This wrinkling which is more three waves, very subtle in the
  697.  paper, seems to be more pronounced when the printer is printing
  698.  continuously and the paper is warm, and also when the paper is low in
  699.  the cassette. I have a feeling it may be the toner cartridge breaking
  700.  in.
  701.  
  702.  ------------------------------
  703.  
  704.  From: PDNNOG (14711)
  705.  Subject: RE: LaserWriter (Re: Msg 14707)
  706.  Date: 10-NOV 18:11 Hardware & Peripherals
  707.  
  708.  Thanks for the message. At least it prints fine, but I believe you may be
  709.  correct. No jamming.
  710.  
  711.  ------------------------------
  712.  
  713.  From: NOFAL (14676)
  714.  Subject: Excel Macro
  715.  Date: 9-NOV-22:08: Business Mac
  716.  
  717.  Is there anyway to make Excel count only weekdays within a macro or a
  718. -formula?
  719.      --Danny P.S.:This is a question from my father.Not mine.
  720.  
  721.  ------------------------------
  722.  
  723.  From: PEABO (14701)
  724.  Subject: Intersting MacTerminal 2.0 feature
  725.  Date: 9-NOV-23:51: Telecommunicating
  726.  
  727.  I just noticed for the first time that there is a thick black line at
  728.  the bottom of the MacTerminal screen display.  For whatever reason, I
  729.  am able to make it scroll into view by pressing on the down arrow when
  730.  the screen would otherwise be at the bottom.
  731.  
  732.  (Just did a little experimenting while typing ...)  Aha!  It turns out that
  733. -it
  734.  you inadvertantly adjust the window size of the MacTerminal window, it uses
  735. -the
  736.  black line to indicate that you are not exactly on the screen boundary!
  737.  
  738.  peter
  739.  
  740.  ------------------------------
  741.  
  742.  From: MACINTOUCH (14706)
  743.  Subject: 1 Mbit RAM chips are here for the Mac Plus
  744.  Date: 10-NOV 16:43 Hardware & Peripherals
  745.  
  746.  I haven't seen much discussion about this, but it seems that Dove is selling
  747.  RAM upgrades for the Mac Plus that use 1Mbit chips.  We've been waiting for
  748.  this for a long time.  Since the Mac power supply is such a wimp, it seems
  749.  that this is the only good way to upgrade a Mac's memory capacity.
  750.  
  751.  MacConnection (1-800-MAC-LISA) quoted me the following prices for the
  752.  Dove upgrades:
  753.  
  754.   4 MB  - $1549
  755.   2 MB -  $769
  756.  
  757.  Yeah, it's a little steep.  But the Dept. of Commerce in its wisdom is
  758.  setting an arbitrarily high price for RAM chips after the big "dumping"
  759.  investigation.  FMV ("fair market value") pricing of 1Mbit chips appears
  760.  to be about $40.  They are selling for $20 in Japan.  256K chips are about
  761.  10 times cheaper.
  762.  
  763.  I've called Dove, and gotten only a run-around so far.  MacConnection,
  764. -however,
  765.  claims to have been running 3 Macs with the 4MB upgrade for a few months
  766.  without problem.  I guess a Mac using 1Mbit chips should actually run cooler
  767.  than one with 256K chips and 1/2 the memory.
  768.  
  769.  Ric
  770.  
  771.  P.S. Dove is at 800-MAC-SNAP
  772.  
  773.  ------------------------------
  774.  
  775.  From: OPPENHEIM (990)
  776.  Subject: scc clock
  777.  Date:  8-NOV-20:59: Programming Techniques
  778.  
  779.  Can the SCC use an external clock in the asynchrous mode? Does anyone know
  780. -of a
  781.  source for this chip's spec sheet?
  782.  
  783.  Thanks. op
  784.  
  785.  ------------------------------
  786.  
  787.  From: PEABO (992)
  788.  Subject: RE: scc clock (Re: Msg 990)
  789.  Date:  8-NOV-21:38: Programming Techniques
  790.  
  791.  The 8530 SCC chip is manufacured by Zilog and also by at least one second
  792.  source.
  793.  
  794.  peter
  795.  
  796.  ------------------------------
  797.  
  798.  From: HSTARR (993)
  799.  Subject: SCSI controllers
  800.  Date:  9-NOV-02:38: Current Discussions
  801.  
  802.  Steve -- I am moving right along on my SCSI project, thanks for your
  803.  help. BUT -- Do you know if there is any significant difference I
  804.  should be aware of between the OMTI 3127 and the newer 3527? I tend to
  805.  agree with your earlier comments about the Adaptec 4070 compared to
  806.  the 3127. My current project is to replace a 4070 with a 3527 (the
  807.  drive is a Priam v185). If I ever track down someone to get some
  808.  cabling and a power supply, I'll give the CP340 I have a bit of a go
  809.  too! (My workshop is back in Australia!) Thanks -- Harry
  810.  
  811.  ------------------------------
  812.  
  813.  From: INET60 (994)
  814.  Subject: HD20SC Icon
  815.  Date:  9-NOV-15:42: Developers' Corner
  816.  
  817.  Where the hell is the Icon for the HardDisk, ( in the ROM ? )
  818.  
  819.  Dhiren Fonseca.
  820.  
  821.  ------------------------------
  822.  
  823.  From: DSACHS (995)
  824.  Subject: RE: HD20SC Icon (Re: Msg 994)
  825.  Date:  9-NOV-18:38: Developers' Corner
  826.  
  827.  You will probably find the Apple HD20 icon as a resource in the System file.
  828.  Icons for other hard disks may vary in location.  The Finder isssues a
  829. -function
  830.  to each disk driver to determine the icon to display.  Most SCSI disks have
  831.  their icons as part of the driver code.
  832.  
  833.  ------------------------------
  834.  
  835.  From: INET60 (997)
  836.  Subject: RE: HD20SC Icon (Re: Msg 995)
  837.  Date:  10-NOV 00:16 Developers' Corner
  838.  
  839.  So, do think that the ICON is in the Driver installer ?, It is not in the
  840. -ICON,
  841.  ICN# Res in the system file!
  842.  
  843.  998  10-NOV 00:25 Programming Techniques
  844.  ------------------------------
  845.  
  846.  ple:
  847.       From (     crashing)
  848.  Subject:  the cache
  849.  
  850.      Are you tired of having to turn your disk cache off to run Megaroids and
  851.  other programs that require the second video/sound page? Are you crashing out
  852.  because you often forget to turn the cache off before you run these programs?
  853.  
  854.      If you answered yes to any of the above questions, then you should know
  855. -that
  856.  since the cache code resides in INIT 35, you can go in and lower BufPtr below
  857.  the secondary buffers by using the INIT 31 mechanism.  Sure it ties up a
  858. -little
  859.  memory but that's what memory's for, right?  And its only a few lines of
  860.  assembler.
  861.  
  862.  Paul :)
  863.  
  864.  ------------------------------
  865.  
  866.  End of Delphi Mac Digest
  867.  ************************
  868.